runtime.activeSweep.state (field)

11 uses

	runtime (current package)
		mgc.go#L179: 	sweep.active.state.Store(sweepDrainedMask)
		mgcsweep.go#L138: 	state atomic.Uint32
		mgcsweep.go#L153: 		state := a.state.Load()
		mgcsweep.go#L157: 		if a.state.CompareAndSwap(state, state+1) {
		mgcsweep.go#L170: 		state := a.state.Load()
		mgcsweep.go#L174: 		if a.state.CompareAndSwap(state, state-1) {
		mgcsweep.go#L195: 		state := a.state.Load()
		mgcsweep.go#L199: 		if a.state.CompareAndSwap(state, state|sweepDrainedMask) {
		mgcsweep.go#L207: 	return a.state.Load() &^ sweepDrainedMask
		mgcsweep.go#L214: 	return a.state.Load() == sweepDrainedMask
		mgcsweep.go#L222: 	a.state.Store(0)